PCA Index Dashboard Examples

PCA Index Dashboard Examples#

This script was last run at 2024-03-17 10:11:40.099168+00:00 (UTC)
In US/Central Time, this is 2024-03-17 05:11:40.099168-05:00
# Change one of the plots on this page to anything else
import numpy as np
from matplotlib import pyplot as plt

x = np.linspace(0, 8, 1000)
y = x*x

plt.figure(figsize=(10, 6))
plt.plot(x, y)
plt.title('Change one of the plots on this page to anything else')
plt.xlabel('X')
plt.ylabel('y')
plt.show()
../../_images/d01383f10038dc284c91e6d107dabbf2687e40080e3b010137987e94f85b7495.png
../../_images/5744ae7bc03a6654b7c59ea80aa225e614b08b86d63c5cb3ae5fcb29005107c8.png
../../_images/976ea48146210c455846742a2fb9f98a0e4748bd7797b0c76046839e30400cba.png